Tom,
Things are getting a bit more complicated, and I am
stuck again. Now I have 3 sensors, and am trying to jog an
axis in an infinite loop. Basically I need to track the
state of all three sensors, and if it changes alter a jog
speed accordingly.
I am struggling to find an efficient way to do this.
Can I read the sensor states in as binary numbers? Then I
check the binary number for changes every loop, and if it
changes I would alter the motor speed accordingly?
If so - could you help me understand how to convert
sensor states to binary? Also how to compare a binary
number to an integer to do specific tasks?
Sensor 1 |
Sensor
2 |
Sensor
3 |
Decimal |
Motor
Speed |
1 |
1 |
1 |
7 |
Stop |
0 |
1 |
1 |
3 |
Slow |
1 |
0 |
1 |
5 |
Stop |
0 |
0 |
1 |
1 |
Slow |
1 |
1 |
0 |
6 |
Stop |
0 |
1 |
0 |
2 |
Slow |
1 |
0 |
0 |
4 |
Fast |
0 |
0 |
0 |
0 |
Fast |
Thanks,
Scott